home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / JOHNLOVE / C_SOURCE / CMYTEAR.H < prev    next >
Text File  |  1992-02-29  |  885b  |  43 lines

  1. /*********************************************************
  2.  "CmyTear.h"
  3.  
  4.  by John A. Love, III [Washington Apple Pi Users' Group]
  5.  
  6.  using Symantec's "THINK C", v 5.0.1
  7.  ... as derived from their "TCL Starter" files
  8.  *********************************************************/
  9.  
  10.  
  11.  
  12.  
  13. #define _H_CmyTear
  14.  
  15. // All the stuff for ╥CmyTear.c╙ here as well:
  16. #include <CGridSelector.h>
  17. #include <CSelectorMDEF.h>
  18. #include <CTearOffMenu.h>        // includes <CPane.h>
  19. #include <CWindow.h>
  20. #include <Traps.h>
  21. #include <TCLUtilities.h>
  22.  
  23. #include "CmyMisc.h"
  24.  
  25.  
  26. struct    CCustomSelector : CGridSelector        {
  27.  
  28.     void    DrawItem (short theItem, Rect *theBox);
  29.     // Inherited from CSelector:
  30.     void    DoClick (Point hitPt, short modifierKeys, long when);
  31. };
  32.  
  33.  
  34. struct CTearMenuDir : CTearOffMenu        {
  35.  
  36.     void        ITearMenuDir (CApplication *aSupervisor);
  37.     void        DoCommand (long theCommand);
  38. };
  39.  
  40.  
  41.  
  42. /* end: "CmyTear.h" */
  43.